#learnNewLanguage {
    height: 450px;
    background-color: #EDEDEC;
    padding: 5rem 8rem;
    font-family: "Rubik";
    gap: 6rem;
}

#learnNewLanguage .learningPoint {
    width: 50%;
    /* border: 2px solid red; */
}


/* Text Division  */

#learnNewLanguage #text {
    margin: 0px;
    padding: 0px;
}

#learnNewLanguage #text #startNow {
    color: #EC6559;
    font-weight: bold;
    height: 3%;
}

#learnNewLanguage #text #Learn {
    font-size: 2.8rem;
    color: #2D1D4F;
    font-weight: 999;
    height: 25%;
}

#learnNewLanguage #text #paragraph {
    height: 50%;
    color: #1E1D22;
    text-align: justify;
}


/* Learning Points  */

#learnNewLanguage #fourPoints {
    display: grid;
    grid-template-columns: repeat(2, 49%);
    grid-template-rows: repeat(2, 30%);
    justify-content: center;
    align-content: center;
    gap: 1rem;
    margin-top: -3rem;
}

#learnNewLanguage #fourPoints .points {
    /* border: 2px solid red; */
    align-items: center;
    justify-content: center;
    font-family: "Rubik";
    background-color: white;
    box-shadow: #1E1D22;
}


/* Points Setting  */

#learnNewLanguage #fourPoints .points .number {
    width: 21%;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #EC6559;
    border-radius: 15rem;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
}

#learnNewLanguage #fourPoints .points .text {
    height: 100%;
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0.5rem;
    font-size: 0.93rem;
}

@media (max-width: 1100px) {
    #learnNewLanguage #text #Learn {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    #learnNewLanguage #fourPoints .points .number {
        width: 19%;
        height: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #EC6559;
        border-radius: 15rem;
        color: white;
        font-weight: bold;
        font-size: 1.3rem;
    }
    #learnNewLanguage #fourPoints .points .text {
        height: 100%;
        width: 60%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: 0.5rem;
        font-size: 0.83rem;
    }
}

@media (max-width: 768px) {
    #learnNewLanguage #text #Learn {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    #learnNewLanguage #fourPoints .points .number {
        width: 19%;
        height: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #EC6559;
        border-radius: 15rem;
        color: white;
        font-weight: bold;
        font-size: 1.3rem;
    }
    #learnNewLanguage #fourPoints .points .text {
        height: 100%;
        width: 60%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: 0.5rem;
        font-size: 0.83rem;
    }
    #learnNewLanguage .learningPoint {
        width: 60%;
        /* border: 2px solid red; */
    }
    #learnNewLanguage {
        height: 450px;
        background-color: #EDEDEC;
        padding: 5rem 3rem;
        font-family: "Rubik";
        gap: 6rem;
    }
}

@media (max-width: 700px) {
    #learnNewLanguage #text #Learn {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    #learnNewLanguage #fourPoints .points .number {
        width: 19%;
        height: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #EC6559;
        border-radius: 15rem;
        color: white;
        font-weight: bold;
        font-size: 1.3rem;
    }
    #learnNewLanguage #fourPoints .points .text {
        height: 100%;
        width: 60%;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-left: 0.5rem;
        font-size: 0.83rem;
    }
    #learnNewLanguage .learningPoint {
        width: 100%;
        /* border: 2px solid red; */
    }
    #learnNewLanguage {
        height: fit-content !important;
        background-color: #EDEDEC;
        padding: 3rem 1rem;
        font-family: "Rubik";
        gap: 6rem;
        flex-direction: column;
    }
    #learnNewLanguage #fourPoints {
        display: grid;
        grid-template-columns: repeat(2, 49%);
        grid-template-rows: repeat(2, 60%);
        justify-content: center;
        align-content: center;
        gap: 0.6rem;
        margin-top: -3rem;
    }
}